Assignment #2¶

Please follow instruction below to complete your assignment. You are expected to provide:

  • IPython notebook
  • HTML export of this notebook

This assignment is due 20/05/2022. Please use code blocks to comment and explain your code.

STUDENT ID: [26754]

In [ ]:
%matplotlib inline 
import os, sys
import json

import random
import numpy as np
import networkx as nx
import pandas as pd

import matplotlib
from matplotlib import pyplot as plt

# Import any other package you may need
from random import seed
from pylab import *
from scipy.ndimage import measurements

Helper functions for data visualization¶

In [ ]:
def visualize_grid(grid, params=None, figname=None):
    '''
    Generic data visualization function
    
    - grid: 2D numpy array that has integer values
    - params: dictionary of parameters ex: {'dim': (50,50), 'p':0.5} 
    - figname: path and name for a figure file ex: figures/sample_05.pdf
    '''
    cmap = plt.cm.get_cmap('jet', len(np.unique(grid)))
    im = plt.matshow(grid, cmap=cmap, origin='lower', interpolation='none')
    plt.colorbar(im, fraction=0.046, pad=0.04)
    plt.xticks([])
    plt.yticks([])
    
    if params != None:
        plt.title(params, fontsize=10)
    
    if figname != None:
        plt.savefig(figname, dpi=300, bbox_inches='tight')
    

Simulate percolation¶

In [ ]:
def create_grid(dimensions, pthr):
    '''
    Create a grid as 2D numpy array and return the grid
    - dimensions: tuple or array that has height and width of the grid ex: [50,50]
    - pthr: threshold value for occupying a cell
    '''
    grid = np.zeros(dimensions)

    # FILL HERE
    for i in range(0,dimensions[0]):
      for j in range(0,dimensions[1]):
        if random() < pthr:
          grid[j][i] = 1
    
    return grid

def find_clusters(grid):
    '''
    Find clusters of occupied cells in the grid
    - grid: 2D numpy array
    
    Return:
    - cGrids: 2D numpy array that has a different integer values for each cluster cells
    - clusters: list of coordinates for each cluster
    '''
    clusters = list()
    cGrids = np.zeros(grid.shape)    
    # FILL HERE
    
    #From the scipy.ndimage library, which is mainly used for image processing, I imported 
          #measurements.label function in order to label Connected Components (CCL) which are clusters in this case
    
    #Here, a is the labeled grid and b is the number of different classes
    a, b = measurements.label(grid)
    cGrids = a
    
    #In order to present classes more obviously, I shuffeled the color schema
    tmp = arange(a.max() + 1)
    shuffle(tmp)
    cGrids = tmp[a]

    #For all different labels (clusters), a list of points that the class included is created
    for i in range(b+1):
      coord_x, coord_y = np.where(cGrids == i)
      try_x = int(coord_x[0])
      try_y = int(coord_y[0])
      if grid[try_x][try_y] != 0: #For indices that has value 0, no class has been assigned
        coordinates = list()
        for j in range(len(coord_x)):
          coordinate = (int(coord_x[j]), int(coord_y[j]))
          coordinates.append(coordinate)
        clusters.append(coordinates)

    
    return cGrids, sorted(clusters, key=len)


def check_percolation(grid, clusters):
    '''
    Check whether given grid percolated
    - grid: 2D numpy array
    
    Return:
    - grid: 2D numpy array. This function updated the value of grid to reflect percolating component
    - percCluster: coordinates of the cells in the percolating component
    '''
    clusters = sorted(clusters, key=len)
    percCluster = None
    
    # FILL HERE
    
    #In order to detect the percolation, one can simply check following conditions
        #In a cluster if there exist two points such as:
        #(1) One of them has x_value = 0 and other has x_value = maxValue - 1
        #(2) One of them has y_value = 0 and other has y_value = maxValue - 1
    boundaries = grid.shape
    for label in clusters:
      column = sorted(label, key=lambda x: x[1])
      row = sorted(label, key=lambda x: x[0])

      #Check condition (1) here
      if column[0][1] == 0 and column[-1][1] == boundaries[1]-1:
        print("Percolation from left to right")
        percCluster = label
        break
      #Check condition (2) here
      elif row[0][0] == 0 and row[-1][0] == boundaries[1]-1:
        print("Percolation from up to bottom")
        percCluster = label
        break
    #Detected cluster that is percolated will be labeled as 2 here and it will show the percolated area
    if percCluster != None:
      for c in percCluster:
        grid[c[0],c[1]] = 2
            
    return grid, percCluster

pval = 0.58
dims = (100,100)
rgrid = create_grid(dims, pval)
visualize_grid(rgrid, {'p':pval, 'dims':dims})

cgrid, clusters = find_clusters(rgrid)
visualize_grid(cgrid, {'p':pval, 'dims':dims})


pgrid, pcluster = check_percolation(rgrid, clusters)
visualize_grid(pgrid, {'p':pval, 'dims':dims})
Percolation from left to right
In [ ]:
#pExplore

# You can change the parameters below.
NRANDOM = 100
DIMS = (50,50)

pExplore = np.linspace(0,1,101)[1:-1]

expResults = list()
for n in range(NRANDOM):
    
    # You can run simulation for pExplore and pExpand values seperately and repeat pExpand if needed.
    for pval in pExplore:   
    #for pval in pExpand: 
        rgrid = create_grid(dims, pval)
        cgrid, clusters = find_clusters(rgrid)
        pgrid, pcluster = check_percolation(rgrid, clusters)
        
    
        if n == 0:
            # Sample one outcome for each parameter
            visualize_grid(cgrid, {'p':np.round(pval,4), 'dims':dims}, 
                           figname='percolation-figures-explore/percvis_p{:.4f}.pdf'.format(pval))
        
        # I recommend keeping all the experiment results in a file, 
        # so that you will have them all before your analysis
        expResults.append({
            'p': pval,
            'idx': n,
            'dim': dims,
            'isPercolated': pcluster != None,
            'clusters': clusters,
        })
        
        print({k:v for k,v in expResults[-1].items() if k != 'clusters'})
        
        # Let's keep the latest experiment result on a file
        with open('percolation_experiments_explore.jsons', 'a') as fl:
            fl.write('{}\n'.format(json.dumps(expResults[-1])))
        
{'p': 0.01, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.21, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.22, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.23, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.24, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.25, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.26, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.27, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.28, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.29, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.3, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.31, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.32, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.33, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.34, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.35000000000000003, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.36, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.37, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.38, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.39, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.4, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.41000000000000003, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.42, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.43, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.44, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.45, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.46, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.47000000000000003, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.48, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.49, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.51, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.52, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.53, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.54, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.55, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.56, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5700000000000001, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.58, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.59, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.61, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.62, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.63, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.64, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.65, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.66, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.67, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.68, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6900000000000001, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.7000000000000001, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.71, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.72, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.73, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.74, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.75, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.76, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.77, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.78, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.79, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.8, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.81, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.8200000000000001, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.8300000000000001, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.84, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.85, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.86, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.87, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.88, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.89, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.9, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.91, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.92, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.93, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.9400000000000001, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.9500000000000001, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.96, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.97, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.98, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
Streaming output truncated to the last 5000 lines.
{'p': 0.48, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5700000000000001, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.58, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.59, 'idx': 64, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.63, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 64, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.59, 'idx': 65, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.6, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.61, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 65, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.58, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.59, 'idx': 66, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 66, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 67, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 67, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5700000000000001, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.58, 'idx': 68, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.59, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 68, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.61, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.62, 'idx': 69, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.63, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 69, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 70, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 70, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5700000000000001, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.58, 'idx': 71, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 71, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.59, 'idx': 72, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 72, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 73, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 73, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.59, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.6, 'idx': 74, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.61, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 74, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5700000000000001, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.58, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 75, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.61, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 75, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5700000000000001, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.58, 'idx': 76, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 76, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5700000000000001, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.58, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.59, 'idx': 77, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.6, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.63, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 77, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 78, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5700000000000001, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.58, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.59, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 78, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 79, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.61, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 79, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 80, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.58, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.59, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 80, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5700000000000001, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.58, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.59, 'idx': 81, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.6, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 81, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 82, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.58, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.59, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.61, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 82, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.59, 'idx': 83, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.61, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 83, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 84, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.58, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.59, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 84, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 85, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.59, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 85, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 86, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.58, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.59, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 86, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5700000000000001, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.58, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.59, 'idx': 87, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 87, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 88, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.58, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.59, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 88, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.58, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.59, 'idx': 89, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 89, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 90, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.58, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.59, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 90, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.59, 'idx': 91, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 91, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 92, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 92, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 93, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 93, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.59, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 94, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.61, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 94, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 95, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 95, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 96, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.58, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.59, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 96, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5700000000000001, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.58, 'idx': 97, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.59, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 97, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5700000000000001, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.58, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.59, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 98, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.61, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 98, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.01, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.02, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.03, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.04, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.05, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.06, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.07, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.08, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.09, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.1, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.11, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.12, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.13, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.14, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.15, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.16, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.17, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.18, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.19, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.2, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.21, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.22, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.23, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.24, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.25, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.26, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.27, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.28, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.29, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.3, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.31, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.32, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.33, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.34, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.35000000000000003, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.36, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.37, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.38, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.39, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.4, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.41000000000000003, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.42, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.43, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.44, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.45, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.46, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.47000000000000003, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.48, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.49, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.51, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.52, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.53, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.54, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.56, 'idx': 99, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5700000000000001, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.58, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.59, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.61, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.62, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.63, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.64, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.66, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.67, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.68, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6900000000000001, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.7000000000000001, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.71, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.72, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.73, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.74, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.75, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.76, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.77, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.78, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.79, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.81, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8200000000000001, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.8300000000000001, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.84, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.85, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.86, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.87, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.88, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.89, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.91, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.92, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.93, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9400000000000001, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.9500000000000001, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.96, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.97, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.98, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.99, 'idx': 99, 'dim': (100, 100), 'isPercolated': True}
In [ ]:
!zip -r /content/percolation-explore.zip /content/percolation-figures-explore
In [ ]:
from google.colab import files
files.download("/content/percolation-explore.zip")
In [ ]:
#pExpand

NRANDOM = 50
DIMS = (50,50)
pExpand = np.linspace(0.5,0.65,52)[1:] # Update this array to find more accurate estimation.

expResults = list()
for n in range(NRANDOM):
    
    # You can run simulation for pExplore and pExpand values seperately and repeat pExpand if needed.
    #for pval in pExplore:   
    for pval in pExpand: 
        rgrid = create_grid(dims, pval)
        cgrid, clusters = find_clusters(rgrid)
        pgrid, pcluster = check_percolation(rgrid, clusters)
        
    
        if n == 0:
          visualize_grid(cgrid, {'p':np.round(pval,4), 'dims':dims}, 
                           figname='percolation-figures-expand/percvis_p{:.4f}.pdf'.format(pval))
        expResults.append({
            'p': pval,
            'idx': n,
            'dim': dims,
            'isPercolated': pcluster != None,
            'clusters': clusters,
        })
        
        print({k:v for k,v in expResults[-1].items() if k != 'clusters'})
        
        # Let's keep the latest experiment result on a file
        with open('percolation_experiments_expand.jsons', 'a') as fl:
            fl.write('{}\n'.format(json.dumps(expResults[-1])))
        
{'p': 0.5029411764705882, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5617647058823529, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5647058823529412, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5676470588235294, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5705882352941176, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5735294117647058, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5764705882352941, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5794117647058824, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5823529411764706, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5852941176470589, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5882352941176471, 'idx': 0, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5911764705882353, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5941176470588235, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.5970588235294118, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6029411764705882, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6058823529411765, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6088235294117648, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.611764705882353, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6147058823529412, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6176470588235294, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6205882352941177, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6235294117647059, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6264705882352941, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6294117647058823, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6323529411764706, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6352941176470588, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.638235294117647, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6411764705882353, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6441176470588236, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.6470588235294118, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
/usr/local/lib/python3.7/dist-packages/ipykernel_launcher.py:10: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  # Remove the CWD from sys.path while we load stuff.
{'p': 0.65, 'idx': 0, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.611764705882353, 'idx': 1, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 1, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5970588235294118, 'idx': 2, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6323529411764706, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 2, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5617647058823529, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5647058823529412, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5676470588235294, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5705882352941176, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6029411764705882, 'idx': 3, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.611764705882353, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 3, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5882352941176471, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5911764705882353, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5941176470588235, 'idx': 4, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6029411764705882, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 4, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 5, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 5, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5970588235294118, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.6, 'idx': 6, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 6, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5735294117647058, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5764705882352941, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6029411764705882, 'idx': 7, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6088235294117648, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6147058823529412, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6294117647058823, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 7, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5647058823529412, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5676470588235294, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5705882352941176, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5735294117647058, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5764705882352941, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5852941176470589, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5882352941176471, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6029411764705882, 'idx': 8, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6088235294117648, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 8, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5764705882352941, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 9, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 9, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5911764705882353, 'idx': 10, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 10, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 11, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 11, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5676470588235294, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5705882352941176, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 12, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.6029411764705882, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 12, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 13, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6088235294117648, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 13, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5411764705882353, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5441176470588235, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5735294117647058, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5764705882352941, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5941176470588235, 'idx': 14, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 14, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5970588235294118, 'idx': 15, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6058823529411765, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 15, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5735294117647058, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5764705882352941, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 16, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5970588235294118, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 16, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5676470588235294, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5705882352941176, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5970588235294118, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6058823529411765, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.6088235294117648, 'idx': 17, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 17, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5735294117647058, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5764705882352941, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5852941176470589, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 18, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6088235294117648, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 18, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5852941176470589, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 19, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 19, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5735294117647058, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5764705882352941, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 20, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 20, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5617647058823529, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5647058823529412, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5735294117647058, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5764705882352941, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 21, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5970588235294118, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 21, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 22, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 22, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5705882352941176, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5735294117647058, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5852941176470589, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5970588235294118, 'idx': 23, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6058823529411765, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 23, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5676470588235294, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5705882352941176, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5764705882352941, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5911764705882353, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 24, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 24, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5794117647058824, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5970588235294118, 'idx': 25, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.611764705882353, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 25, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5911764705882353, 'idx': 26, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6029411764705882, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6176470588235294, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 26, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 27, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6088235294117648, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.611764705882353, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 27, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5676470588235294, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5705882352941176, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 28, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 28, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5794117647058824, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5911764705882353, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5970588235294118, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6029411764705882, 'idx': 29, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 29, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5558823529411765, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5588235294117647, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 30, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6147058823529412, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 30, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5647058823529412, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5676470588235294, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5735294117647058, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5764705882352941, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5882352941176471, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 31, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6029411764705882, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6088235294117648, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 31, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5970588235294118, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6029411764705882, 'idx': 32, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6147058823529412, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 32, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.6029411764705882, 'idx': 33, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.611764705882353, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6147058823529412, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 33, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5676470588235294, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5705882352941176, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6029411764705882, 'idx': 34, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 34, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5852941176470589, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5970588235294118, 'idx': 35, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.611764705882353, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 35, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5705882352941176, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5735294117647058, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5852941176470589, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 36, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 36, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5852941176470589, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 37, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5970588235294118, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 37, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5647058823529412, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5676470588235294, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 38, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5970588235294118, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6058823529411765, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 38, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5705882352941176, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5735294117647058, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5794117647058824, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 39, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6088235294117648, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 39, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5735294117647058, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5764705882352941, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6088235294117648, 'idx': 40, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.611764705882353, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6441176470588236, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 40, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5852941176470589, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5882352941176471, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5911764705882353, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5941176470588235, 'idx': 41, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6176470588235294, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 41, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5764705882352941, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5911764705882353, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5941176470588235, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6029411764705882, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6058823529411765, 'idx': 42, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 42, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5647058823529412, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5676470588235294, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 43, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6088235294117648, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 43, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5588235294117647, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5617647058823529, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5764705882352941, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5823529411764706, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5852941176470589, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.6058823529411765, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6176470588235294, 'idx': 44, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 44, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5558823529411765, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5588235294117647, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5705882352941176, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5735294117647058, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5794117647058824, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 45, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 45, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5852941176470589, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5941176470588235, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6, 'idx': 46, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.6029411764705882, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.611764705882353, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 46, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5529411764705883, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5558823529411765, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 47, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5823529411764706, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5882352941176471, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5911764705882353, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5941176470588235, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.5970588235294118, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 47, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5676470588235294, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5705882352941176, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5735294117647058, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5764705882352941, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5794117647058824, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5823529411764706, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5882352941176471, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5911764705882353, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5941176470588235, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5970588235294118, 'idx': 48, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6029411764705882, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.611764705882353, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 48, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5029411764705882, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5058823529411764, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5088235294117647, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5117647058823529, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5147058823529411, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5176470588235295, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5205882352941177, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5235294117647059, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5264705882352941, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5294117647058824, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5323529411764706, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5352941176470588, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.538235294117647, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5411764705882353, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5441176470588235, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5470588235294118, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.55, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5529411764705883, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5558823529411765, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5588235294117647, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5617647058823529, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5647058823529412, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5676470588235294, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.5705882352941176, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5735294117647058, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5764705882352941, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.5794117647058824, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5823529411764706, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
Percolation from up to bottom
{'p': 0.5852941176470589, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.5882352941176471, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5911764705882353, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5941176470588235, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
{'p': 0.5970588235294118, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
{'p': 0.6029411764705882, 'idx': 49, 'dim': (100, 100), 'isPercolated': False}
Percolation from left to right
{'p': 0.6058823529411765, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6088235294117648, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from up to bottom
{'p': 0.611764705882353, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6147058823529412, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6176470588235294, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6205882352941177, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6235294117647059, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6264705882352941, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6294117647058823, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6323529411764706, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6352941176470588, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.638235294117647, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6411764705882353, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6441176470588236, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.6470588235294118, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
Percolation from left to right
{'p': 0.65, 'idx': 49, 'dim': (100, 100), 'isPercolated': True}
In [ ]:
!zip -r /content/percolation-expand.zip /content/percolation-figures-expand
In [ ]:
files.download("/content/percolation-expand.zip")

Analyze outputs¶

In [ ]:
#pExplore
expRes = dict()
with open('percolation_experiments_explore.jsons', 'r') as fl:
    for i,line in enumerate(fl):
        expRes[i] = json.loads(line.strip())
exploreDf = pd.DataFrame.from_dict(expRes, orient='index')
In [ ]:
#pExpand
expRes = dict()
with open('percolation_experiments_expand.jsons', 'r') as fl:
    for i,line in enumerate(fl):
        expRes[i] = json.loads(line.strip())
expandDf = pd.DataFrame.from_dict(expRes, orient='index')
In [ ]:
exploreDf
Out[ ]:
p idx dim isPercolated clusters
0 0.01 0 [100, 100] False [[[7, 18]], [[77, 9]], [[94, 29]], [[94, 35]],...
1 0.02 0 [100, 100] False [[[30, 11]], [[69, 51]], [[66, 62]], [[63, 7]]...
2 0.03 0 [100, 100] False [[[14, 77]], [[39, 24]], [[13, 31]], [[65, 16]...
3 0.04 0 [100, 100] False [[[96, 57]], [[54, 72]], [[60, 89]], [[11, 67]...
4 0.05 0 [100, 100] False [[[94, 56]], [[92, 40]], [[4, 72]], [[59, 76]]...
... ... ... ... ... ...
9895 0.95 99 [100, 100] True [[[0, 0], [0, 1], [0, 3], [0, 4], [0, 5], [0, ...
9896 0.96 99 [100, 100] True [[[0, 0], [0, 1], [0, 2], [0, 3], [0, 4], [0, ...
9897 0.97 99 [100, 100] True [[[0, 0], [0, 1], [0, 2], [0, 3], [0, 4], [0, ...
9898 0.98 99 [100, 100] True [[[0, 0], [0, 1], [0, 2], [0, 3], [0, 4], [0, ...
9899 0.99 99 [100, 100] True [[[0, 0], [0, 1], [0, 2], [0, 3], [0, 4], [0, ...

9900 rows × 5 columns

In [ ]:
expandDf
Out[ ]:
p idx dim isPercolated clusters
0 0.502941 0 [100, 100] False [[[36, 0]], [[27, 18]], [[75, 95]], [[35, 83]]...
1 0.505882 0 [100, 100] False [[[29, 28]], [[97, 4]], [[93, 88]], [[87, 35]]...
2 0.508824 0 [100, 100] False [[[54, 35]], [[19, 75]], [[27, 75]], [[27, 77]...
3 0.511765 0 [100, 100] False [[[1, 63]], [[89, 41]], [[94, 27]], [[54, 71]]...
4 0.514706 0 [100, 100] False [[[11, 97]], [[88, 48]], [[56, 72]], [[22, 98]...
... ... ... ... ... ...
2545 0.638235 49 [100, 100] True [[[31, 73]], [[90, 77]], [[39, 72]], [[52, 0]]...
2546 0.641176 49 [100, 100] True [[[88, 15]], [[24, 94]], [[37, 42]], [[65, 35]...
2547 0.644118 49 [100, 100] True [[[3, 49]], [[95, 37]], [[83, 79]], [[20, 36]]...
2548 0.647059 49 [100, 100] True [[[13, 81]], [[11, 40]], [[19, 61]], [[66, 10]...
2549 0.650000 49 [100, 100] True [[[58, 79]], [[56, 24]], [[44, 66]], [[20, 16]...

2550 rows × 5 columns

In [ ]:
#Probabilities and Average Cluster size

#pExplore
perc_prob_explore = dict() 
for p in exploreDf.p.unique():
  p_df = exploreDf[exploreDf.p == p]
  percolated_count = len(p_df[p_df.isPercolated == True])
  perc_prob_explore[p] = percolated_count / len(p_df)


average_cSize_explore = dict()
for p in exploreDf.p.unique():
  p_df = exploreDf[exploreDf.p == p]
  mean = 0
  for i, row in p_df.iterrows():
    sum = 0
    sumFin = 0
    for class_ in row.clusters:
      columns = sorted(class_, key=lambda x: x[1])
      rows = sorted(class_, key=lambda x: x[0])
      if (columns[0][1] == 0 and columns[-1][1] == row.dim[0] - 1) or (rows[0][0] == 0 and rows[-1][0] == row.dim[0] - 1):
        pass
      else:    
        sum += len(class_)
        sumFin += 1
    if sumFin != 0:
      mean += sum / sumFin
  average_cSize_explore[p] = mean / len(p_df)

#pExpand
perc_prob_expand = dict() 
for p in expandDf.p.unique():
  p_df = expandDf[expandDf.p == p]
  percolated_count = len(p_df[p_df.isPercolated == True])
  perc_prob_expand[p] = percolated_count / len(p_df)

average_cSize_expand = dict() 
for p in expandDf.p.unique():
  p_df = expandDf[expandDf.p == p]
  mean = 0
  for i, row in p_df.iterrows():
    sum = 0
    sumFin = 0
    for class_ in row.clusters:
      columns = sorted(class_, key=lambda x: x[1])
      rows = sorted(class_, key=lambda x: x[0])
      if (columns[0][1] == 0 and columns[-1][1] == row.dim[0] - 1) or (rows[0][0] == 0 and rows[-1][0] == row.dim[0] - 1):
        pass
      else:    
        sum += len(class_)
        sumFin += 1
    if sumFin != 0:
      mean += sum / sumFin
  average_cSize_expand[p] = mean / len(p_df)
In [ ]:
#Percolation Probabilities for different p values

fig, axes = plt.subplots(1, 2,figsize=(12,6))
axes[0].set(title='Percolation Probabilities for different p values 0.0 to 1.0', xlabel='p value', ylabel='percolation probability')
axes[1].set(title='Percolation Probabilities for different p values 0.5 to 0.65', xlabel='p value', ylabel='percolation probability')

axes[0].plot(list(perc_prob_explore.keys()), list(perc_prob_explore.values()), color='red')
axes[1].plot(list(perc_prob_expand.keys()), list(perc_prob_expand.values()), color='blue')


print("Percolation Probabilities for different p values")
Percolation Probabilities for different p values
In [ ]:
#Average finite cluster sizes for different p values

fig, axes = plt.subplots(1, 2,figsize=(12,6))
axes[0].set(title='Average finite cluster sizes for different p values 0.0 to 1.0', xlabel='p value', ylabel='Average finite cluster sizes')
axes[1].set(title='Average finite cluster sizes for different p values 0.5 to 0.65', xlabel='p value', ylabel='Average finite cluster sizes')

axes[0].plot(list(average_cSize_explore.keys()), list(average_cSize_explore.values()), color='red')
axes[1].plot(list(average_cSize_expand.keys()), list(average_cSize_expand.values()), color='blue')


print("Average finite cluster sizes for different p values")
Average finite cluster sizes for different p values
In [ ]:
import statistics

#In order to calculate p_inf parameter, one need to calculate the probability of
                                    #one element to be a member of the biggest cluster

#To do that in our experiment for every different p value, I will calculate the mean of the p_inf value's mean and std

#pExplore
p_inf_explore_mean = dict()
p_inf_explore_std = dict() 

#Create a data frame for every unique p value in the experiment
for p in exploreDf.p.unique():
  p_df = exploreDf[exploreDf.p == p]
  p_df.index = p_df['clusters'].str.len()
  total = p_df['clusters'].str.len().sum()
  p_df = p_df.sort_index(ascending=False).reset_index(drop=True)
  max_cluster = p_df['clusters'][0]
  std = []
  for cluster in p_df['clusters']:
    x = x+1
    max = -1
    size = 0
    for pebble in cluster:
      if len(pebble) > max:
        max = len(pebble)
      size = size + len(pebble)
    total = total + max/size
    std.append(max/size)

  p_inf_explore_mean[p] = statistics.mean(std)
  p_inf_explore_std[p] = statistics.stdev(std, xbar = statistics.mean(std))


  
In [ ]:
#Average finite cluster sizes for different p values

fig, axes = plt.subplots(1, 2, figsize=(12,6))
axes[0].set(title='mean of P∞ for different p values', xlabel='p value', ylabel='mean')
axes[1].set(title='std of P∞ different p values', xlabel='p value', ylabel='std')
axes[0].set_xticks(np.arange(0, 1, 0.1))
axes[0].plot(list(p_inf_explore_mean.keys()), list(p_inf_explore_mean.values()), color='red')
axes[1].plot(list(p_inf_explore_std.keys()), list(p_inf_explore_std.values()), color='blue')



print("Mean and std of P∞ for different p values")
Mean and std of P∞ for different p values